home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 5_2007-2008.ISO / data / Zips / Png_in_ima206930652007.psc / Yttermera strippad / Form1.frm next >
Text File  |  2007-06-05  |  1KB  |  37 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3180
  5.    ClientLeft      =   60
  6.    ClientTop       =   360
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3180
  10.    ScaleWidth      =   4680
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.PictureBox picBox 
  13.       Height          =   1575
  14.       Left            =   3240
  15.       ScaleHeight     =   1515
  16.       ScaleWidth      =   1035
  17.       TabIndex        =   0
  18.       Top             =   960
  19.       Width           =   1095
  20.    End
  21.    Begin VB.Image imgImage 
  22.       Height          =   855
  23.       Left            =   480
  24.       Top             =   1080
  25.       Width           =   1335
  26.    End
  27. End
  28. Attribute VB_Name = "Form1"
  29. Attribute VB_GlobalNameSpace = False
  30. Attribute VB_Creatable = False
  31. Attribute VB_PredeclaredId = True
  32. Attribute VB_Exposed = False
  33. Private Sub Form_Load()
  34.  Call PngImageLoad(App.Path & "\Miss.png", imgImage)
  35.  Call PngPictureLoad(App.Path & "\Sports.png", picBox, True)
  36. End Sub
  37.